home *** CD-ROM | disk | FTP | other *** search
/ U.S. Robotics Connections 2 / US Robotics Connections.iso / mac / SourceMc / PalmMC.DIR / 00302.ls < prev    next >
Encoding:
Text File  |  1996-02-29  |  757 b   |  29 lines

  1. on DrawNum
  2.   global gCalNum, gSetNum, gLastNum, gOperation
  3.   set lNumofChar to the number of chars in string(gCalNum)
  4.   if lNumofChar > 12 then
  5.     set lNumofChar to 12
  6.   end if
  7.   set lNumToSub to 12 - lNumofChar
  8.   if lNumToSub > 0 then
  9.     repeat with i = 1 to lNumToSub
  10.       set the visible of sprite (48 - 12 + i) to 0
  11.     end repeat
  12.   end if
  13.   updateStage()
  14.   repeat with i = 1 to lNumofChar
  15.     set lNum to char i of string(gCalNum)
  16.     set lCastNum to the number of cast lNum
  17.     set the castNum of sprite (48 - lNumofChar + i) to lCastNum
  18.     set the visible of sprite (48 - lNumofChar + i) to 1
  19.   end repeat
  20.   updateStage()
  21. end
  22.  
  23. on clearpuppets
  24.   repeat with i = 1 to 48
  25.     puppetSprite(i, 0)
  26.     set the visible of sprite i to 1
  27.   end repeat
  28. end
  29.